Skip to content

Commit

Permalink
typos
Browse files Browse the repository at this point in the history
- `--` not `–`
- `\pagebreak` not needed in Markdown
  • Loading branch information
Reto Kromer authored and michaelni committed Sep 4, 2016
1 parent da40880 commit f5e2924
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions ffv1.md
Expand Up @@ -69,7 +69,7 @@ Note: the operators and the order of precedence are the same as used in the C pr

`a++` is equivalent to a = a + 1.

`a` is equivalent to a = a - 1.
`a--` is equivalent to a = a - 1.

`a += b` is equivalent to a = a + b.

Expand Down Expand Up @@ -115,7 +115,7 @@ $\lceil a \rceil$ the smallest integer greater than or equal to a
When order of precedence is not indicated explicitly by use of parentheses, operations are evaluated in the following order (from top to bottom, operations of same precedence being evaluated from left to right). This order of operations is based on the order of operations used in Standard C.

```
a++, a
a++, a--
!a, -a
a * b, a / b, a % b
a + b, a - b
Expand All @@ -140,8 +140,6 @@ a = b, a += b, a -= b

`byte_aligned( )` means `remaining_bits_in_bitstream( )` is a multiple of 8.

\pagebreak

# General Description

Each frame is split in 1 to 4 planes (Y, Cb, Cr, Alpha). In the case of the normal YCbCr colorspace the Y plane is coded first followed by the Cb and Cr planes, if an Alpha/transparency plane exists, it is coded last. In the case of the JPEG2000-RCT colorspace the lines are interleaved to improve caching efficiency since it is most likely that the RCT will immediately be converted to RGB during decoding; the interleaved coding order is also Y, Cb, Cr, Alpha.
Expand Down

0 comments on commit f5e2924

Please sign in to comment.